home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / cp1255.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  138 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from 'CP1255.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     128: 8364,
  39.     129: None,
  40.     130: 8218,
  41.     131: 402,
  42.     132: 8222,
  43.     133: 8230,
  44.     134: 8224,
  45.     135: 8225,
  46.     136: 710,
  47.     137: 8240,
  48.     138: None,
  49.     139: 8249,
  50.     140: None,
  51.     141: None,
  52.     142: None,
  53.     143: None,
  54.     144: None,
  55.     145: 8216,
  56.     146: 8217,
  57.     147: 8220,
  58.     148: 8221,
  59.     149: 8226,
  60.     150: 8211,
  61.     151: 8212,
  62.     152: 732,
  63.     153: 8482,
  64.     154: None,
  65.     155: 8250,
  66.     156: None,
  67.     157: None,
  68.     158: None,
  69.     159: None,
  70.     164: 8362,
  71.     170: 215,
  72.     186: 247,
  73.     192: 1456,
  74.     193: 1457,
  75.     194: 1458,
  76.     195: 1459,
  77.     196: 1460,
  78.     197: 1461,
  79.     198: 1462,
  80.     199: 1463,
  81.     200: 1464,
  82.     201: 1465,
  83.     202: None,
  84.     203: 1467,
  85.     204: 1468,
  86.     205: 1469,
  87.     206: 1470,
  88.     207: 1471,
  89.     208: 1472,
  90.     209: 1473,
  91.     210: 1474,
  92.     211: 1475,
  93.     212: 1520,
  94.     213: 1521,
  95.     214: 1522,
  96.     215: 1523,
  97.     216: 1524,
  98.     217: None,
  99.     218: None,
  100.     219: None,
  101.     220: None,
  102.     221: None,
  103.     222: None,
  104.     223: None,
  105.     224: 1488,
  106.     225: 1489,
  107.     226: 1490,
  108.     227: 1491,
  109.     228: 1492,
  110.     229: 1493,
  111.     230: 1494,
  112.     231: 1495,
  113.     232: 1496,
  114.     233: 1497,
  115.     234: 1498,
  116.     235: 1499,
  117.     236: 1500,
  118.     237: 1501,
  119.     238: 1502,
  120.     239: 1503,
  121.     240: 1504,
  122.     241: 1505,
  123.     242: 1506,
  124.     243: 1507,
  125.     244: 1508,
  126.     245: 1509,
  127.     246: 1510,
  128.     247: 1511,
  129.     248: 1512,
  130.     249: 1513,
  131.     250: 1514,
  132.     251: None,
  133.     252: None,
  134.     253: 8206,
  135.     254: 8207,
  136.     255: None })
  137. encoding_map = codecs.make_encoding_map(decoding_map)
  138.